home *** CD-ROM | disk | FTP | other *** search
/ 10,000 Great Games / 10,000 Great Games.iso / Product / 66 / data1.cab / Source_Files / Src / Timer.cpp < prev    next >
C/C++ Source or Header  |  2000-01-16  |  287b  |  24 lines

  1. #include "stdafx.h"
  2.  
  3. int cTimer::timer = 0, cTimer::last = 0, cTimer::paused = FALSE;
  4.  
  5. void cTimer::pause()
  6. {
  7.     get();
  8.     paused = TRUE;
  9. }
  10.  
  11. void cTimer::unpause()
  12. {
  13.     get();
  14.     paused = FALSE;
  15. }
  16.  
  17. void cTimer::togglepause()
  18. {
  19.     if (paused)
  20.         unpause();
  21.     else
  22.         pause();
  23. }
  24.